home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-21 | 868 b | 38 lines | [TEXT/CWIE] |
- // CDefaultButtonWindow.h
- /*
- * $Workfile: CDefaultButtonWindow.h $
- * $Modtime: 6/20/97 5:52 PM $
- * $Revision: 2 $
- * $Date: 6/20/97 5:52 PM $
- * $History: CDefaultButtonWindow.h $
- *
- * ***************** Version 2 *****************
- * User: jwoo QDate: 6/20/97 Time: 5:52 PM
- * Updated in $/ConMan/ConMan Interface Source/General Interface Classes/Generic
- * June 20, 1997: No code change here. Just added the version control
- * header.
-
- */
-
- #pragma once
-
-
- // This class is exactly like LDialogBox accept it doesn't automatically add
- // this as a listener to the buttons.
- class CDefaultButtonWindow : public LDialogBox
- {
- public:
-
- enum{class_ID = 'CDBw'};
-
- CDefaultButtonWindow(LStream* inStream);
- ~CDefaultButtonWindow();
-
- virtual void SetDefaultButton(PaneIDT inButtonID);
- virtual void SetCancelButton(PaneIDT inButtonID);
-
-
-
-
-
- };